home *** CD-ROM | disk | FTP | other *** search
/ PC Home 138 / PC Home issue 138.iso / PCHome.exe / scripts / DefineButton2_85 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2003-12-04  |  513 b   |  19 lines

  1. on(release){
  2.    set("../:disclaimeropen","0");
  3.    NumberOfChars = length(filetolaunch);
  4.    LookForThisChar = NumberOfChars - "3";
  5.    trace("This is Look for this char" add LookForThisChar);
  6.    if(filetolaunch.substr(LookForThisChar,"4") eq ".exe")
  7.    {
  8.       trace("I\'m an exe");
  9.       fscommand("exec",eval("../../:PathtoCD") add filetolaunch);
  10.    }
  11.    else
  12.    {
  13.       getURL(filetolaunch,"_blank");
  14.       trace("I\'m a URL");
  15.    }
  16.    set("../:disclaimeraccepted","yes");
  17.    gotoAndStop(1);
  18. }
  19.